|
Posizione nel menu |
---|
Part Design → Foro |
Ambiente |
PartDesign |
Avvio veloce |
Nessuno |
Introdotto nella versione |
0.17 |
Vedere anche |
Tasca |
La funzione Foro crea uno o più fori da uno schizzo selezionato. Possono essere impostati molti parametri come filettatura (threading) e dimensioni (size), accoppiamento (fit), tipo di foro (hole type), svasato (countersink), lamato (counterbore), dritto (straight), e altro.
The centers of the circles and arcs are used to position the holes, but please note that their radii are not taken into account. The generated holes will be identical even if the radii vary.
Sezione longitudinale di foro svasato a sinistra e di foro lamato a destra (countersunk e counterbored).
A seconda della selezione effettuata, alcuni campi si attivano o restano disabilitati.
Gran parte delle proprietà dati sono le stesse di quelle mostrate nelle Opzioni.
Cut types (screw-types) are defined in json files. There is a set of files distributed with FreeCAD, but users can create their own definitions. Files are searched in <UserAppDataDir>/PartDesign/Hole
. The UserAppDataDir
can be found by typing App.getUserAppDataDir()
in the Python console.
The file should contain:
countersink
or counterbore
.metric
or metricfine
.Example:
{
"name": "DIN 7984",
"cut_type": "counterbore",
"thread_type": "metric",
"data": [
{ "thread": "M2", "diameter": 4.3, "depth": 1.6 },
{ "thread": "M2.5", "diameter": 5.0, "depth": 2.0 },
…
]
}